home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strspn.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  99 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.07.53;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.07.22.09.00.18;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * strspn.c --
  31.  *
  32.  *    Source code for the "strspn" library routine.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strspn.c,v 1.1 88/07/22 09:00:18 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  46. #endif /* not lint */
  47.  
  48. #include <string.h>
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * strspn --
  54.  *
  55.  *    Compute the length of the maximum initial segment of "string"
  56.  *    whose characters all are in "chars".
  57.  *
  58.  * Results:
  59.  *    The return value is the length of the initial segment (0 if the
  60.  *    first character isn't in "chars".
  61.  *
  62.  * Side effects:
  63.  *    None.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. int
  69. strspn(string, chars)
  70.     char *string;            /* String to search. */
  71.     char *chars;            /* Characters to look for in string. */
  72. {
  73.     register char c, *p, *s;
  74.  
  75.     for (s = string, c = *s; c != 0; s++, c = *s) {
  76.     for (p = chars; *p != 0; p++) {
  77.         if (c == *p) {
  78.         goto next;
  79.         }
  80.     }
  81.     break;
  82.     next: ;
  83.     }
  84.     return s-string;
  85. }
  86. @
  87.  
  88.  
  89. 1.1
  90. log
  91. @Initial revision
  92. @
  93. text
  94. @d17 4
  95. a20 2
  96. static char rcsid[] = "$Header: strlen.c,v 1.3 88/07/02 14:33:08 ouster Exp $ SPRITE (Berkeley)";
  97. #endif not lint
  98. @
  99.